home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1986, 1987 Pat Joseph Monardo. All rights reserved.
- * Copying of this file is granted according to the provisions
- * specified in the file COPYING which must accompany this file.
- */
-
-
- /*
- * expand.h
- */
-
- int get_x_token();
- int expand();
- int insert_relax();
-
- #define TOP_MARK_CODE 0
- #define FIRST_MARK_CODE 1
- #define BOT_MARK_CODE 2
- #define SPLIT_FIRST_MARK_CODE 3
- #define SPLIT_BOT_MARK_CODE 4
-
- #define top_mark cur_mark[TOP_MARK_CODE]
- #define first_mark cur_mark[FIRST_MARK_CODE]
- #define bot_mark cur_mark[BOT_MARK_CODE]
- #define split_first_mark cur_mark[SPLIT_FIRST_MARK_CODE]
- #define split_bot_mark cur_mark[SPLIT_BOT_MARK_CODE]
-
- global ptr cur_mark[];
-
- global int long_state;
- global ptr pstack[];
-
- int macro_call();
- int x_token();
-